AssetDoubleProperty

data class AssetDoubleProperty(val property: String, val value: Double, val defaultValue: Double, val min: Double, val max: Double, val step: Double) : AssetProperty

A class that represents a double asset property.

Parameters

property

the name of the property.

value

the current value of the property.

defaultValue

the default value of the property if it is not set.

min

the minimum value of the property.

max

the maximum value of the property.

step

the step by which the value can be increased or decreased.

Constructors

Link copied to clipboard
constructor(property: String, value: Double, defaultValue: Double, min: Double, max: Double, step: Double)

Properties

Link copied to clipboard
Link copied to clipboard
val max: Double
Link copied to clipboard
val min: Double
Link copied to clipboard
open override val property: String
Link copied to clipboard
Link copied to clipboard